home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2002 January / january_2002.iso / Piposh Special / Piposh / STRTGAME.DXR / 00140.ls < prev    next >
Encoding:
Text File  |  2004-12-07  |  367 b   |  14 lines

  1. on mouseUp
  2.   global savenameall
  3.   repeat with i = 12 to 17
  4.     set the editableText of sprite i to 0
  5.     put item i - 11 of savenameall into field ("save" & i - 11)
  6.   end repeat
  7.   repeat with i = 19 to 24
  8.     sprite(i).visible = 1
  9.   end repeat
  10.   if the text of field ("save" & the clickOn - 11) <> "untitled" then
  11.     sprite(the clickOn + 7).visible = 0
  12.   end if
  13. end
  14.